home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / devSCSITape.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  41 lines

  1. /*
  2.  * devSCSITape.h --
  3.  *
  4.  *    Declarations of device switch routines for SCSI Tape drives.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/devSCSITape.h,v 9.2 91/08/19 13:44:35 jhh Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVSCSITAPE
  19. #define _DEVSCSITAPE
  20.  
  21. /*
  22.  * Flags encoded in the unit number of the device.
  23.  */
  24.  
  25. #define DEV_SCSI_TAPE_NO_REWIND    0x1    /* No rewind on close. */
  26. #define DEV_SCSI_TAPE_VAR_BLOCK    0x2    /* Variable block size. */
  27.  
  28. extern ReturnStatus DevSCSITapeOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
  29.     Fs_NotifyToken token, int *flagsPtr));
  30. extern ReturnStatus DevSCSITapeRead _ARGS_((Fs_Device *devicePtr,
  31.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  32. extern ReturnStatus DevSCSITapeWrite _ARGS_((Fs_Device *devicePtr,
  33.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  34. extern ReturnStatus DevSCSITapeIOControl _ARGS_((Fs_Device *devicePtr,
  35.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  36. extern ReturnStatus DevSCSITapeClose _ARGS_((Fs_Device *devicePtr,
  37.     int useFlags, int openCount, int writerCount));
  38.  
  39. #endif /* _DEVSCSITAPE */
  40.  
  41.